home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Conversion / Convert_PICT / Source / UncommentedPSCode / Colors < prev    next >
Text File  |  1994-05-24  |  488b  |  34 lines

  1. %BEGIN Colors
  2. /fgColor
  3. {
  4.     /colorValue exch def
  5.     colorValue type   /arraytype eq
  6.         { /foregroundColor colorValue def}
  7.         { /foregroundColor [0 0 0] def }
  8.     ifelse
  9. } def
  10. /bkColor
  11. {
  12.     /colorValue exch def
  13.     colorValue type   /arraytype eq
  14.         { /backgroundColor colorValue  def}
  15.         {/backgroundColor [0 0 0] def }
  16.     ifelse
  17. } def
  18. /RGBFgCol
  19.     { /foregroundColor exch def } 
  20. def
  21. /RGBBkCol
  22.     { /backgroundColor exch def }
  23. def
  24. /hiliteColor
  25.     { pop }
  26. def
  27. /defHilite
  28.     {}
  29. def
  30. /OpColor
  31.     { pop }
  32. def
  33. %END Colors
  34.